* {
    box-sizing: border-box;
}

body{
    margin: 0;
    background-color: rgb(255, 187, 164);
}

#header{
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.logo{
    width: 35%;
    margin: auto;
}

.logo img{
    width: 100%;
}


h2 {
    align-items: center;
    font-family: sans-serif;
    font-weight: lighter;
}

#homepage{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

#ctacontainer{
    text-align: center;
    margin-top: 60px;
}

.ctabutton{
    background-color: #ea6692;
    color: white;
    padding: 16px 32px;
    border: none;
}

.ctabutton:hover{
    background-color: #ffb3cc;

}

h3{
    font-family: sans-serif;
    font-weight: normal;
}

.brooklynbridge img{
    width: 100%;
}

.circleskyline img{
    width: 100%;
}

.left{
    width: 30%;
    padding: 10px;
    text-align: center;
}


.center{
    width: 30%;
    padding: 10px;
    text-align: center;
}


.dream{
    padding: 8px;
    align-items: center;
    margin-top: 40px;
    font-family: sans-serif;
    font-weight: normal;
}

.right{
    width: 30%;
    padding: 10px;
    text-align: center;
}

.menu-item{
    font-family: sans-serif;
    padding: 20px;
}

.menu-item a {
    color: black;
    text-decoration: none;
    
}

.menu-item:hover a{
    color: white;
}

.current {
    color: black;
}

.current:hover{
    color: white;
}


#day {
    position: relative;
}

.drop-down-menu {
    width: 70%;
    border: solid 1px;

    position: absolute;
    top: 55px;
    left: 15%;

    display: none;

}

.drop-down {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border: solid 1px;
    text-align: center;
    background-color: rgb(255, 187, 164);
}

#day:hover .drop-down-menu{
    display: block;
}

#day:hover .current{
    display: block;
    color: white;
}

footer{
    background-color: rgb(255, 187, 164);
    color: rgb(0, 0, 0);
    font-size: 90%;
    text-align: center;
    padding: 60px;
}

